{% extends "base.html" %} {% block title %}{{ stage.name }} - Web application for Adwizard optimization{% endblock %} {% block content %}

Stage: {{ stage.name }}

Stage info
Stage ID: {{ stage.id_stage }}
Product name: {{ stage.name }}
Expert: {{ stage.expert or 'Not specified' }}
Symbol: {{ stage.symbol }}
Timeframe: {{ stage.period }}
Status: {{ stage.status }}
Project: {{ stage.project.name }}
Parent stage: {{ stage.parent_stage.name if stage.parent_stage else 'Нет' }}

Stage jobs

{% if jobs %} {% for job in jobs %} {% endfor %}
ID Symbol Timeframe Status Actions
{{ job.id_job }} {{ job.symbol }} {{ job.period }} {{ job.status }} Details
{% else %}

This stage has no jobs yet.

{% endif %}
{% endblock %}